home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGNG_C
/
CUG187.LZH
/
CANT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1985-12-30
|
600b
|
19 lines
/*@*****************************************************/
/*@ */
/*@ cant - tell user that we cannot open given file. */
/*@ Returns to caller. */
/*@ */
/*@ Usage: cant(filename); */
/*@ where filename is an ASCIIZ string. */
/*@ */
/*@*****************************************************/
cant(s)
char *s;
{
puts(s);
puts(": cannot open\n");
}